home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Hacks
/
Hacks ’96
/
Talking Telnet
/
source
/
config
/
LinkedList.h
< prev
next >
Wrap
Text File
|
1996-06-22
|
118b
|
9 lines
//LinkedList.h
typedef struct LinkedListNode {
StringHandle name;
struct LinkedListNode *next;
} LinkedListNode;